home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / FavOrgDoc.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  6.6 KB  |  218 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #include "stdafx.h"
  8.  
  9. #include "FavOrg.h"
  10. #include "multiseltreectrl.h"
  11. #include "favorgtreectl.h"
  12. #include "FavOrgDoc.h"
  13. #include "favorgview.h"
  14. #include "mainfrm.h"
  15.  
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22. char const g_szIniSection[] = "options";
  23. char const g_szIniStoreEntry[] = "iconstore";
  24. char const g_szIniTimeoutEntry[] = "timeout";
  25. char const g_szIniAllowUpdateEntry[] = "allowupdate";
  26. char const g_szIniFindIconsEntry[] = "findicons";
  27. char const g_szDelOptionEntry[] = "deloption";
  28. char const g_szDefaultTimeout[] = "8";
  29. char const g_szSortTreeEntry[] = "sortree";
  30. char const g_szNoCheckEntry[] = "noconnectcheck";
  31. char const g_szShowLegendEntry[] = "showlegend";
  32. char const g_szLegendTopEntry[] = "legendtop";
  33. char const g_szLegendBottomEntry[] = "legendbottom";
  34. char const g_szLegendLeftEntry[] = "legendleft";
  35. char const g_szLegendRightEntry[] = "legendright";
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CFavOrgDoc
  39.  
  40. IMPLEMENT_DYNCREATE(CFavOrgDoc, CDocument)
  41.  
  42. BEGIN_MESSAGE_MAP(CFavOrgDoc, CDocument)
  43.     //{{AFX_MSG_MAP(CFavOrgDoc)
  44.     ON_UPDATE_COMMAND_UI(ID_APP_EXIT, OnUpdateAppExit)
  45.     //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CFavOrgDoc construction/destruction
  50.  
  51. CFavOrgDoc::CFavOrgDoc()
  52. {
  53.     m_bLocked = FALSE;
  54.     m_bCommandsDisabled = FALSE;
  55.     m_pctlFavTree = NULL;
  56. }
  57.  
  58. CFavOrgDoc::~CFavOrgDoc()
  59. {
  60. }
  61.  
  62. BOOL CFavOrgDoc::OnNewDocument()
  63. {
  64.     if (!CDocument::OnNewDocument())
  65.         return FALSE;
  66.  
  67.     // Initiliaze icon store path and default picked icon
  68.     CString sPickedShortcut;
  69.  
  70.     CString sIniFile = ((CFavOrgApp*) AfxGetApp())->m_sIniFile;
  71.     
  72.     GetPrivateProfileString(g_szIniSection, g_szIniStoreEntry, _T(""), m_sStorePath.GetBuffer(MAX_PATH), MAX_PATH, sIniFile);
  73.     m_sStorePath.ReleaseBuffer();
  74.  
  75.     if (m_sStorePath.IsEmpty())
  76.     {
  77.         // Create default store folder
  78.         m_sStorePath = sIniFile;
  79.         m_sStorePath.Delete(m_sStorePath.ReverseFind('\\') + 1);
  80.         m_sStorePath += "Data";
  81.  
  82.         CreateDirectory(m_sStorePath, NULL);
  83.     }
  84.  
  85.     // Get user options
  86.     m_nTimeout = GetPrivateProfileInt(g_szIniSection, g_szIniTimeoutEntry, FAVORG_DEFAULT_TIMEOUT, sIniFile);
  87.     if ((m_nTimeout <= 0) && (m_nTimeout > 60))
  88.         m_nTimeout = FAVORG_DEFAULT_TIMEOUT;
  89.  
  90.     m_nNoConnectTest = GetPrivateProfileInt(g_szIniSection, g_szNoCheckEntry, 0, sIniFile);
  91.  
  92.     m_rectLegend.top = GetPrivateProfileInt(g_szIniSection, g_szLegendTopEntry, 0, sIniFile);
  93.     m_rectLegend.bottom = GetPrivateProfileInt(g_szIniSection, g_szLegendBottomEntry, 0, sIniFile);
  94.     m_rectLegend.left = GetPrivateProfileInt(g_szIniSection, g_szLegendLeftEntry, 0, sIniFile);
  95.     m_rectLegend.right = GetPrivateProfileInt(g_szIniSection, g_szLegendRightEntry, 0, sIniFile);
  96.  
  97.     m_nAllowUpdate = GetPrivateProfileInt(g_szIniSection, g_szIniAllowUpdateEntry, 0, sIniFile);
  98.     m_nFindIcons = GetPrivateProfileInt(g_szIniSection, g_szIniFindIconsEntry, 1, sIniFile);
  99.  
  100.     POSITION pos = GetFirstViewPosition();
  101.     CFavOrgView* pView = (CFavOrgView*) GetNextView(pos);
  102.     
  103.     ((CButton*) pView->GetDlgItem(IDC_ALLOWUPDATE))->SetCheck(m_nAllowUpdate);
  104.     ((CButton*) pView->GetDlgItem(IDC_FINDFAVICONS))->SetCheck(m_nFindIcons);
  105.  
  106.     int nShowLegend = GetPrivateProfileInt(g_szIniSection, g_szShowLegendEntry, 0, sIniFile);
  107.     m_bShowLegend = nShowLegend == 1; 
  108.     pView->ShowLegend(m_bShowLegend);
  109.  
  110.     return TRUE;
  111. }
  112.  
  113. void CFavOrgDoc::FinalInit()
  114. {
  115.     if (m_pctlFavTree)
  116.     {
  117.         m_pctlFavTree->SetIconStore(m_sStorePath);
  118.         m_pctlFavTree->SetTimeout(m_nTimeout);
  119.         m_pctlFavTree->SetConnectCheck(m_nNoConnectTest == 1);
  120.         m_pctlFavTree->SetRedirFlag(m_nAllowUpdate == 1);
  121.     }
  122. }
  123.  
  124. void CFavOrgDoc::OnCloseDocument() 
  125. {
  126.     if (m_bLocked)
  127.         return;
  128.  
  129.     // Notify tree control
  130.     m_pctlFavTree->CancelAction();
  131.  
  132.     CString sIniFile = ((CFavOrgApp*) AfxGetApp())->m_sIniFile;
  133.  
  134.     // Store user options
  135.     WritePrivateProfileString(g_szIniSection, g_szIniStoreEntry, m_sStorePath, sIniFile);
  136.     
  137.     CStringEx sTimeout;
  138.     sTimeout.Format("%d", m_nTimeout);
  139.     WritePrivateProfileString(g_szIniSection, g_szIniTimeoutEntry, sTimeout, sIniFile);
  140.  
  141.     CString sAllowUpdate;
  142.     sAllowUpdate.Format("%d", m_nAllowUpdate);
  143.     WritePrivateProfileString(g_szIniSection, g_szIniAllowUpdateEntry, sAllowUpdate, sIniFile);
  144.  
  145.     CString sFindIcons;
  146.     sFindIcons.Format("%d", m_nFindIcons);
  147.     WritePrivateProfileString(g_szIniSection, g_szIniFindIconsEntry, sFindIcons, sIniFile);
  148.  
  149.     CString sConnectTest;
  150.     sConnectTest.Format("%d", m_nNoConnectTest);
  151.     WritePrivateProfileString(g_szIniSection, g_szNoCheckEntry, sConnectTest, sIniFile);
  152.  
  153.     CString sShowLegend;
  154.     sShowLegend.Format("%d", m_bShowLegend ? 1 : 0);
  155.     WritePrivateProfileString(g_szIniSection, g_szShowLegendEntry, sShowLegend, sIniFile);
  156.  
  157.     CString sPos;
  158.  
  159.     POSITION pos = GetFirstViewPosition();
  160.     CFavOrgView* pView = (CFavOrgView*) GetNextView(pos);
  161.     if (pView && pView->m_pdlgLegend)
  162.         pView->m_pdlgLegend->GetWindowRect(m_rectLegend);
  163.  
  164.     sPos.Format("%d", m_rectLegend.top);
  165.     WritePrivateProfileString(g_szIniSection, g_szLegendTopEntry, sPos, sIniFile);
  166.     sPos.Format("%d", m_rectLegend.bottom);
  167.     WritePrivateProfileString(g_szIniSection, g_szLegendBottomEntry, sPos, sIniFile);
  168.     sPos.Format("%d", m_rectLegend.left);
  169.     WritePrivateProfileString(g_szIniSection, g_szLegendLeftEntry, sPos, sIniFile);
  170.     sPos.Format("%d", m_rectLegend.right);
  171.     WritePrivateProfileString(g_szIniSection, g_szLegendRightEntry, sPos, sIniFile);
  172.  
  173.     // Store status of user links
  174.     m_pctlFavTree->StoreStatus();
  175.  
  176.     CDocument::OnCloseDocument();
  177. }
  178.  
  179. /////////////////////////////////////////////////////////////////////////////
  180. // CFavOrgDoc diagnostics
  181.  
  182. #ifdef _DEBUG
  183. void CFavOrgDoc::AssertValid() const
  184. {
  185.     CDocument::AssertValid();
  186. }
  187.  
  188. void CFavOrgDoc::Dump(CDumpContext& dc) const
  189. {
  190.     CDocument::Dump(dc);
  191. }
  192. #endif //_DEBUG
  193.  
  194. /////////////////////////////////////////////////////////////////////////////
  195. // CFavOrgDoc commands
  196.  
  197.  
  198. BOOL CFavOrgDoc::CanCloseFrame(CFrameWnd* pFrame) 
  199. {
  200.     CFavOrgView* pView = (CFavOrgView*) pFrame->GetActiveView();
  201.     if (pView)
  202.         return !pView->IsLocked();
  203.     else
  204.         return CDocument::CanCloseFrame(pFrame);
  205. }
  206.  
  207. void CFavOrgDoc::OnUpdateAppExit(CCmdUI* pCmdUI) 
  208. {
  209.     // We can't exit while FavOrg processes shortcuts
  210.     POSITION pos = GetFirstViewPosition();
  211.     CFavOrgView* pView = (CFavOrgView*) GetNextView(pos);
  212.  
  213.     if (pView)
  214.         pCmdUI->Enable(!pView->IsLocked());
  215.     else
  216.         pCmdUI->Enable(TRUE);
  217. }
  218.